home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / calendarCreation.js < prev    next >
Text File  |  2008-03-14  |  6KB  |  170 lines

  1. /* -*- Mode: javascript; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*-
  2.  * ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is Calendar Code.
  16.  *
  17.  * The Initial Developer of the Original Code is
  18.  * Michiel van Leeuwen <mvl@exedo.nl>.
  19.  * Portions created by the Initial Developer are Copyright (C) 2005
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *   Gary van der Merwe <garyvdm@gmail.com>
  24.  *   Philipp Kewisch <mozilla@kewis.ch>
  25.  *
  26.  * Alternatively, the contents of this file may be used under the terms of
  27.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  28.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  29.  * in which case the provisions of the GPL or the LGPL are applicable instead
  30.  * of those above. If you wish to allow use of your version of this file only
  31.  * under the terms of either the GPL or the LGPL, and not to allow others to
  32.  * use your version of this file under the terms of the MPL, indicate your
  33.  * decision by deleting the provisions above and replace them with the notice
  34.  * and other provisions required by the GPL or the LGPL. If you do not delete
  35.  * the provisions above, a recipient may use your version of this file under
  36.  * the terms of any one of the MPL, the GPL or the LGPL.
  37.  *
  38.  * ***** END LICENSE BLOCK ***** */
  39.  
  40. var gCalendar;
  41.  
  42. function initLocationPage()
  43. {
  44.     checkRequired();
  45. }
  46.  
  47. function initCustomizePage() {
  48.     initNameFromURI();
  49.     checkRequired();
  50.  
  51.     var suppressAlarmsRow = document.getElementById("customize-suppressAlarms-row");
  52.     suppressAlarmsRow.hidden =
  53.         (gCalendar && gCalendar.getProperty("capabilities.alarms.popup.supported") === false);
  54. }
  55.  
  56. function checkRequired() {
  57.     var canAdvance = true;
  58.     var curPage = document.getElementById('calendar-wizard').currentPage;
  59.     if (curPage) {
  60.         var eList = curPage.getElementsByAttribute('required', 'true');
  61.         for (var i = 0; i < eList.length && canAdvance; ++i) {
  62.             canAdvance = (eList[i].value != "");
  63.         }
  64.         if (canAdvance && document.getElementById("calendar-uri").value)
  65.             canAdvance = checkURL();
  66.         document.getElementById('calendar-wizard').canAdvance = canAdvance;
  67.     }
  68. }
  69.  
  70. function onInitialAdvance() {
  71.     var type = document.getElementById('calendar-type').selectedItem.value;
  72.     var page = document.getElementsByAttribute('pageid', 'initialPage')[0];
  73.     if (type == 'local') {
  74.         prepareCreateCalendar();
  75.         page.next = 'customizePage';
  76.     } else {
  77.         page.next = 'locationPage';
  78.     }
  79. }
  80.  
  81. /**
  82.  * Create the calendar, so that the customize page can already check for
  83.  * calendar capabilities of the provider.
  84.  */
  85. function prepareCreateCalendar() {
  86.     var provider;
  87.     var uri;
  88.     var type = document.getElementById('calendar-type').selectedItem.value;
  89.     if (type == 'local') {
  90.         provider = 'storage';
  91.         uri = 'moz-profile-calendar://?id=2';
  92.     } else {
  93.         uri = document.getElementById("calendar-uri").value;
  94.         provider = document.getElementById('calendar-format').selectedItem.value;
  95.     }
  96.  
  97.     var calManager = getCalendarManager();
  98.     var cals = calManager.getCalendars({});
  99.     do {
  100.         var already = cals.filter(function (c) { return c.uri.spec == uri; })
  101.         if (already.length) {
  102.             if (type != 'local') {
  103.                 // signalError("Already have calendar at this URI.");
  104.                 Components.utils.reportError("Already have calendar with URI " + uri);
  105.                 return false;
  106.             }
  107.             uri = uri.replace(/id=(\d+)/,
  108.                               function (s, id) { return "id=" + (Number(id) + 1); });
  109.         }
  110.     } while (already.length);
  111.  
  112.     try {
  113.         gCalendar = calManager.createCalendar(provider, makeURL(uri));
  114.     } catch (ex) {
  115.         dump(ex);
  116.         return false;
  117.     }
  118.  
  119.     return true;
  120. }
  121.  
  122. /**
  123.  * The actual process of registering the created calendar.
  124.  */
  125. function doCreateCalendar() {
  126.     var cal_name = document.getElementById("calendar-name").value;
  127.     var cal_color = document.getElementById('calendar-color').color;
  128.     var calManager = getCalendarManager();
  129.  
  130.     calManager.registerCalendar(gCalendar);
  131.  
  132.     gCalendar.name = cal_name;
  133.     gCalendar.setProperty('color', cal_color);
  134.  
  135.     if (!document.getElementById("fire-alarms").checked) {
  136.         gCalendar.setProperty('suppressAlarms', true);
  137.     }
  138.  
  139.     return true;
  140. }
  141.  
  142. function initNameFromURI() {
  143.     var path = document.getElementById("calendar-uri").value;
  144.     var nameField = document.getElementById("calendar-name");
  145.     if (!path || nameField.value)
  146.         return;
  147.  
  148.     var fullPathRegex = new RegExp("([^/:]+)[.]ics$");
  149.     var captures = path.match(fullPathRegex);
  150.     if (captures && captures.length >= 1) {
  151.         nameField.value = decodeURIComponent(captures[1]);
  152.     }
  153. }
  154.  
  155. //Don't let the wizard advance if the URL isn't valid, since the calendar
  156. //creation will fail.
  157. function checkURL() {
  158.     try {
  159.         makeURL(document.getElementById("calendar-uri").value);
  160.     }
  161.     catch (ex) {
  162.         return false;
  163.     }
  164.     return true;
  165. }
  166.  
  167. function setCanRewindFalse() {
  168.    document.getElementById('calendar-wizard').canRewind = false;
  169. }
  170.